compress/gzip.Writer.err (field)
32 uses
compress/gzip (current package)
gzip.go#L38: err error
gzip.go#L140: if z.err != nil {
gzip.go#L141: return 0, z.err
gzip.go#L168: _, z.err = z.w.Write(z.buf[:10])
gzip.go#L169: if z.err != nil {
gzip.go#L170: return 0, z.err
gzip.go#L173: z.err = z.writeBytes(z.Extra)
gzip.go#L174: if z.err != nil {
gzip.go#L175: return 0, z.err
gzip.go#L179: z.err = z.writeString(z.Name)
gzip.go#L180: if z.err != nil {
gzip.go#L181: return 0, z.err
gzip.go#L185: z.err = z.writeString(z.Comment)
gzip.go#L186: if z.err != nil {
gzip.go#L187: return 0, z.err
gzip.go#L196: n, z.err = z.compressor.Write(p)
gzip.go#L197: return n, z.err
gzip.go#L209: if z.err != nil {
gzip.go#L210: return z.err
gzip.go#L217: if z.err != nil {
gzip.go#L218: return z.err
gzip.go#L221: z.err = z.compressor.Flush()
gzip.go#L222: return z.err
gzip.go#L229: if z.err != nil {
gzip.go#L230: return z.err
gzip.go#L238: if z.err != nil {
gzip.go#L239: return z.err
gzip.go#L242: z.err = z.compressor.Close()
gzip.go#L243: if z.err != nil {
gzip.go#L244: return z.err
gzip.go#L248: _, z.err = z.w.Write(z.buf[:8])
gzip.go#L249: return z.err
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |